public class Lab01_Task2 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int j = 0;
while (j<3){
System.out.println("WELCOME TO LAB01");
}
}
}